home *** CD-ROM | disk | FTP | other *** search
/ PC PowerPlay 46 / CDPowerplay46Disc2.iso / utils / xqxset55 / _SETUP.2 / Group3 / XQ WinHelp Options.xpl < prev    next >
Encoding:
XSetup plugin  |  1999-08-30  |  1.1 KB  |  41 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="General Usage\Misc"
  5. "NAME"="WinHelp CTRL Keys"
  6. "VERSION"="1.40"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Activate CTRL+SHIFT moving through helpfiles"
  9. "DESCRIPTION 1"="Activating this option allows you to move through every help file by pressing CTRL+SHIFT+CURSOR LEFT or CTRL+SHIFT+CURSOR RIGHT."
  10. "AUTHOR"="Xteq Systems"
  11. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  12. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  13. "COMMENT 2"=" "
  14. "COMMENT 3"="from "Registry Dompteur" RegDom (c) 1996..98 by Horst Schmid, Horst_Schmid@compuserve.com"
  15.  
  16.  
  17. Sub Plugin_Initialize 
  18.  i=IniReadValue("WIN.INI","Windows Help","SeqTopicKeys")
  19.  if i=1 then
  20.     SetUIElement 1,true 
  21.  end if
  22. End Sub
  23.  
  24. Sub Plugin_CheckData(ElementIndex)
  25. End Sub
  26.  
  27. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  28.  b=GetUIElement(1)
  29.  if b=true then
  30.     Call IniWriteValue("WIN.INI","Windows Help","SeqTopicKeys","1")
  31.  else
  32.     Call IniWriteValue("WIN.INI","Windows Help","SeqTopicKeys","0")
  33.  end if
  34. End Sub
  35.  
  36. Sub Plugin_Terminate 
  37. End Sub
  38.  
  39.  
  40.  
  41.